home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / msh-156.lha / syslog / syslog.h < prev    next >
C/C++ Source or Header  |  1994-10-24  |  425b  |  21 lines

  1. /*-
  2.  * $Id: syslog.h,v 1.1 1994/10/24 20:38:56 Rhialto Exp $
  3.  *
  4.  * $Log: syslog.h,v $
  5.  * Revision 1.1  1994/10/24  20:38:56  Rhialto
  6.  * Initial revision
  7.  *
  8.  * DEBUGGING LOG DEAMON PUBLIC DEFINITIONS
  9. -*/
  10.  
  11. #define Prototype   extern
  12. #define Local        static
  13.  
  14. #ifdef __STDC__
  15. Prototype void initsyslog(void);
  16. Prototype void uninitsyslog(void);
  17. Prototype void syslog0(char *format, ...);
  18. #endif
  19.  
  20. #define debug(args) syslog0 args
  21.